home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / vbasic / health.exe / BIGBEDIT.FRM < prev    next >
Text File  |  1993-07-22  |  4KB  |  131 lines

  1. VERSION 2.00
  2. Begin Form bigbedit 
  3.    BackColor       =   &H00FFFF80&
  4.    BorderStyle     =   1  'Fixed Single
  5.    ClientHeight    =   5640
  6.    ClientLeft      =   1830
  7.    ClientTop       =   1740
  8.    ClientWidth     =   7305
  9.    ControlBox      =   0   'False
  10.    Height          =   6045
  11.    Left            =   1770
  12.    LinkMode        =   1  'Source
  13.    LinkTopic       =   "Form1"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   5640
  17.    ScaleWidth      =   7305
  18.    Top             =   1395
  19.    Width           =   7425
  20.    Begin CommandButton Command3 
  21.       Caption         =   "Cancel"
  22.       FontBold        =   -1  'True
  23.       FontItalic      =   0   'False
  24.       FontName        =   "MS Sans Serif"
  25.       FontSize        =   9.75
  26.       FontStrikethru  =   0   'False
  27.       FontUnderline   =   0   'False
  28.       Height          =   375
  29.       Left            =   4800
  30.       TabIndex        =   3
  31.       Top             =   5040
  32.       Width           =   1095
  33.    End
  34.    Begin CommandButton Command2 
  35.       Caption         =   "Clear"
  36.       FontBold        =   -1  'True
  37.       FontItalic      =   0   'False
  38.       FontName        =   "MS Sans Serif"
  39.       FontSize        =   9.75
  40.       FontStrikethru  =   0   'False
  41.       FontUnderline   =   0   'False
  42.       Height          =   375
  43.       Left            =   3240
  44.       TabIndex        =   2
  45.       Top             =   5040
  46.       Width           =   1095
  47.    End
  48.    Begin CommandButton Command1 
  49.       Caption         =   "Enter"
  50.       Default         =   -1  'True
  51.       FontBold        =   -1  'True
  52.       FontItalic      =   0   'False
  53.       FontName        =   "MS Sans Serif"
  54.       FontSize        =   9.75
  55.       FontStrikethru  =   0   'False
  56.       FontUnderline   =   0   'False
  57.       Height          =   375
  58.       Left            =   1680
  59.       TabIndex        =   1
  60.       Top             =   5040
  61.       Width           =   1095
  62.    End
  63.    Begin VBedit BEdit1 
  64.       CellHeight      =   500
  65.       CellWidth       =   500
  66.       CharSet         =   16655
  67.       CombBaseLine    =   500
  68.       CombEndHeight   =   360
  69.       CombEndMarker   =   0   'False
  70.       CombHeight      =   270
  71.       FontBold        =   -1  'True
  72.       FontItalic      =   0   'False
  73.       FontName        =   "MS Sans Serif"
  74.       FontSize        =   24
  75.       FontStrikethru  =   0   'False
  76.       FontUnderline   =   0   'False
  77.       ForeColor       =   &H00000000&
  78.       Height          =   2175
  79.       InflateBottom   =   180
  80.       InflateLeft     =   180
  81.       InflateRight    =   180
  82.       InflateTop      =   240
  83.       Left            =   120
  84.       TabIndex        =   0
  85.       Text            =   "BEdit1"
  86.       Top             =   720
  87.       Version         =   268435458
  88.       Width           =   6735
  89.    End
  90.    Begin Label Label1 
  91.       Alignment       =   2  'Center
  92.       FontBold        =   -1  'True
  93.       FontItalic      =   0   'False
  94.       FontName        =   "MS Sans Serif"
  95.       FontSize        =   12
  96.       FontStrikethru  =   0   'False
  97.       FontUnderline   =   0   'False
  98.       Height          =   495
  99.       Left            =   120
  100.       TabIndex        =   4
  101.       Top             =   0
  102.       Width           =   7095
  103.    End
  104. End
  105.  
  106. Sub Command1_Click ()
  107. savedata
  108. assess2.hedit3.text = bedit1.text
  109. Unload bigbedit
  110. End Sub
  111.  
  112. Sub Command2_Click ()
  113. bedit1.text = ""
  114. End Sub
  115.  
  116. Sub Command3_Click ()
  117. Unload bigbedit
  118. End Sub
  119.  
  120. Sub Form_Load ()
  121. 'bigbedit.Move screen.width / 16, screen.height / 20, screen.width * 7 / 8, screen.height * 9 / 10
  122. bigbedit.Move 0, 0, screen.width, screen.height
  123. bigbedit.Scale (1, 1)-(5, 8)
  124. bedit1.Move 1, 2, 4, 5.2
  125. label1.Move 1, 1, 4, 2
  126. COMMAND1.Move 1.4, 7.5
  127. command2.Move 2.7, 7.5
  128. COMMAND3.Move 4, 7.5
  129. End Sub
  130.  
  131.